home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2003 July / INTERNET105.ISO / pc / software / windows / building / homesite / snippets / sample snippets / open window (link).hss < prev    next >
Encoding:
Text File  |  1998-10-11  |  413 b   |  15 lines

  1.  
  2. <!-- Start Open Window Script, goes in Head tag -->    
  3. <script language="JavaScript">
  4. <!-- hide from JavaScript-challenged browsers
  5.  
  6. function openWindow(url) {
  7.   popupWin = window.open(url, 'remote',  'menubar,toolbar,location,directories,status,scrollbars,resizable,dependent,width=640,height=480,left=50,top=50')
  8. }
  9.  
  10. // done hiding -->
  11. </script>
  12. <!-- End Open Window Script, goes in Head tag -->    
  13.  
  14.  
  15.